home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 5 / Amiga Plus Sonderheft 1996 #5.iso / programme / xipaint3.2 / xipaint.lzx / XiPaintModule / Install < prev    next >
Text File  |  1996-04-02  |  1KB  |  45 lines

  1. echo "Installing XiPaint module:"
  2. failat 7
  3. if exists :hhsxipaintmodkey.library
  4.   echo "Installing Keyfile:"
  5.   copy clone :H#?xipaintmodkey.library LIBS:
  6.   echo "Keyfile hhsxipaintmodkey.library installed in LIBS:"
  7. endif
  8. requestfile noicons title "Select XiPaint main directory:" >ENV:XiPDir
  9. if warn
  10.   if not exists XiPaint:
  11.     echo "I need to know the directory!"
  12.     quit 20
  13.   endif
  14. else
  15.   assign XiPaint: `echo $XiPDir`
  16. endif
  17. if exists XiPaint:
  18.   if exists XiPaint:Modules
  19.     echo "XiPaint 3.2 or higher detected:"
  20.     echo "Installing .xio module in XiPaint:Modules"
  21.     copy clone #?.xio XiPaint:Modules
  22.   else
  23.     echo "Old XiPaint without module support detected:"
  24.     echo "Installing .xio module in XiPaint main directory"
  25.     copy clone #?.xio XiPaint:
  26.     echo "Installing loader script:"
  27.     if exists XiPaint/Makro
  28.       copy clone #?loader#?.rx XiPaint:Makro
  29.     else
  30.       copy clone #?loader#?.rx XiPaint:Makros
  31.     endif
  32.   endif
  33.   echo "Installing MakeAnim macro:"
  34.   if exists XiPaint:Makro
  35.     copy clone make#?.rx#? XiPaint:Makro
  36.   else
  37.     copy clone make#?.rx#? XiPaint:Makros
  38.   endif
  39.   copy clone make#?.rx#? XiPaint:
  40.   echo "The documentation is not installed; copy it by dragging"
  41.   echo "to any place you like."
  42. endif
  43. wait 100
  44.  
  45.